home *** CD-ROM | disk | FTP | other *** search
/ Pluspack 1 / Caligari Corporation Pluspack1 1998.iso / TSX_SDK / tsxINC / tsxAnim.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-01-28  |  17.0 KB  |  383 lines

  1. //******************************************************************************
  2. //    File: tsxAnim.h
  3. //  Module: trueSpace eXtensions API
  4. //   Descr: Animation
  5. //******************************************************************************
  6.  
  7. #ifndef TSXANIM_H
  8. #define TSXANIM_H
  9.  
  10. //------------------------------------------------------------------------------
  11. //    Misc
  12. //------------------------------------------------------------------------------
  13.  
  14. enum tsxKFRAME_TYPE {
  15.     e_tsxKFT_UNDEF = 0,    // undefined
  16.     e_tsxKFT_LOOK,        // look at object or ahead (valid only for tsxGNODE types)
  17.     e_tsxKFT_ROTATE,    // object rotate (valid only for tsxGNODE types)
  18.     e_tsxKFT_MOVE,        // object move (valid only for tsxGNODE types)
  19.     e_tsxKFT_SCALE,        // object scale (valid only for tsxGNODE types)
  20.     e_tsxKFT_DEFORM,    // object deformation (valid only for tsxLATTICE type)
  21.     e_tsxKFT_RECT,        // material rectangle position and siza in UV space (valid only for tsxMATRECT type)
  22.     e_tsxKFT_COLOR,        // color of material (valid only for tsxMATERIAL type)
  23.     e_tsxKFT_SURFACE,   // shader of material (valid only for tsxMATERIAL type)
  24.     e_tsxKFT_BUMP,        // bump mapping of material (valid only for tsxMATERIAL type)
  25.     e_tsxKFT_TEXTURE,   // texture mapping of material (valid only for tsxMATERIAL type)
  26.     e_tsxKFT_PROCTEX,   // procedural texture of material (valid only for tsxMATERIAL type)
  27.     e_tsxKFT_ENVIRON,   // environment mapping of material (valid only for tsxMATERIAL type)
  28.     e_tsxKFT_FACETCOS,  // autofacet angle of material (valid only for tsxMATERIAL type)
  29.     e_tsxKFT_LCOLOR,    // color of light (valid only for tsxLIGHT type)
  30.     e_tsxKFT_BACKGROUND,// background (valid only for tsxSCENE type)
  31.     e_tsxKFT_GLOBENV,   // global environment (valid only for tsxSCENE type)
  32.     e_tsxKFT_FOG,        // fog (valid only for tsxSCENE type)
  33.     e_tsxKFT_RAYTRACE,  // raytrace refraction (valid only for tsxSCENE type)
  34.     e_tsxKFT_PLUGIN,    // Photoshop plugin (valid only for tsxPLUGIN type)
  35.     e_tsxKFT_NAIL,        // position of nail (valid only for tsxNAIL type)
  36.     e_tsxKFT_JOINT,        // joint parameters (valid only for tsxJOINT type)
  37.     e_tsxKFT_KINEMATICS,// inverse kinematics (valid only for tsxGROUP type)
  38.     e_tsxKFT_VERTEX,    // vertex move (valid only for tsxPOLYHEDRON type)
  39.     e_tsxKFT_INVISIBLE,    // invisibility (valid only for tsxPOLYHEDRON and tsxGROUP types)
  40.     e_tsxKFT_END,
  41.     };
  42.  
  43.  
  44. //------------------------------------------------------------------------------
  45. //    Managers
  46. //------------------------------------------------------------------------------
  47.  
  48. // Creates and attaches a Script, if none present.
  49. TSXAPIFN tsxERR tsxSobjCreateScript( tsxSOBJ* pSobj );
  50. // Creates and attaches a Script, if none present.
  51. // Obsolete for tS3.1 and later versions, kept for compatibility with tS3.0
  52. TSXAPIFN tsxERR tsxGNodeCreateScript( tsxGNODE* pGNode );
  53.  
  54. // Creates and attaches a Script, if none present for object and all its children
  55. TSXAPIFN tsxERR tsxSobjTreeCreateScript( tsxSOBJ* pSobj );
  56. // Creates and attaches a Script, if none present for object and all its children
  57. // Obsolete for tS3.1 and later versions, kept for compatibility with tS3.0
  58. TSXAPIFN tsxERR tsxGNodeCreateScriptTree( tsxGNODE* pGNode );
  59.  
  60.  
  61. // Deletes animation for the object
  62. TSXAPIFN tsxERR tsxSobjDeleteScript( tsxSOBJ* pSobj );
  63. // Deletes animation for the object
  64. // Obsolete for tS3.1 and later versions, kept for compatibility with tS3.0
  65. TSXAPIFN tsxERR tsxGNodeDeleteScript( tsxGNODE* pGNode );
  66.  
  67. // Deletes animation for for object and all its children
  68. TSXAPIFN tsxERR tsxSobjTreeDeleteScript( tsxSOBJ* pSobj );
  69. // Deletes animation for for object and all its children
  70. // Obsolete for tS3.1 and later versions, kept for compatibility with tS3.0
  71. TSXAPIFN tsxERR tsxGNodeDeleteScriptTree( tsxGNODE* pGNode );
  72.  
  73.  
  74. // Copies animation of From object to destination To object
  75. TSXAPIFN tsxERR tsxSobjCopyScript( tsxSOBJ* pSobjTo, tsxSOBJ* pSobjFrom );
  76. // Copies animation of From object to destination To object
  77. // Obsolete for tS3.1 and later versions, kept for compatibility with tS3.0
  78. TSXAPIFN tsxERR tsxGNodeCopyScript( tsxGNODE* pGNodeTo, tsxGNODE* pGNodeFrom );
  79.  
  80.  
  81. // Tests for an empty animation of the object
  82. TSXAPIFN tsxBOOL tsxSobjEmptyScript( tsxSOBJ* pSobj );
  83.  
  84. // Tests for an empty animation of the object and all its children
  85. TSXAPIFN tsxBOOL tsxSobjTreeEmptyScript( tsxSOBJ* pSobj );
  86.  
  87.  
  88. //------------------------------------------------------------------------------
  89. //    Active Time
  90. //------------------------------------------------------------------------------
  91.  
  92.  
  93. enum tsxANIM_PLAYMODE {
  94.     e_tsxPLAY_SCENE,    // Update whole scene when ActiveTime changed.
  95.     e_tsxPLAY_OBJECT,    // Update only selected object when ActiveTime changed.
  96. };
  97.  
  98. // Set the active frame number for pGNode, related preparation.
  99. // Obsolete for tS3.1 and later versions, kept for compatibility with tS3.0
  100. // Although it says that it sets frame number for specified GNode,
  101. // it only changes the active frame number indicator without any change
  102. // of GNode.
  103. TSXAPIFN void tsxAnimSetActiveFrame( tsxGNODE* pGNode, float frameNbr );
  104.  
  105. // Set the active frame number.
  106. // It updates whole scene according the new frame number. If there is an 
  107. // animated object in the scene, it may be changed to correspond its keyframes.
  108. // So if an eXtension is animating the Sobj, it should repeat following three
  109. // steps:
  110. // 1/ set the active frame number,
  111. // 2/ change animated attribute of Sobj (i.e. its position),
  112. // 3/ create keyframe of the attribute in active frame number (see below).
  113. TSXAPIFN void tsxAnimSetActiveTime( float frameNbr );
  114.  
  115. // Get the active frame number.
  116. TSXAPIFN float tsxAnimGetActiveTime( void );
  117.  
  118. // Specify callback function for a change of the active frame number.
  119. // The function `func' will get called each time there is a change in the
  120. // frame number, made by the normal trueSpace animation panels or through a
  121. // call to one of the above functions for setting active time. Use 0 (NULL)
  122. // to remove an installed callback.
  123. // Returns the previous callback function pointer (or 0 if none).
  124. TSXAPIFN tsxBasicCallbackFP tsxActiveTimeChangedCB(
  125.     int tsxid,            // Id of this eXtn (see tsxGetData).
  126.     tsxBasicCallbackFP func    // This function gets installed as the callback.
  127.     );
  128.  
  129. // Set ranges for playback.
  130. TSXAPIFN void tsxAnimSetPlayRanges( float start, float end );
  131.  
  132. // Get ranges for playback.
  133. TSXAPIFN void tsxAnimGetPlayRanges( float* start, float* end );
  134.  
  135. // Set mode for playback.
  136. TSXAPIFN void tsxAnimSetPlayMode( tsxANIM_PLAYMODE mode );
  137.  
  138. // Get mode for playback.
  139. TSXAPIFN tsxANIM_PLAYMODE tsxAnimGetPlayMode( void );
  140.  
  141. // Run playback.
  142. TSXAPIFN tsxERR tsxAnimPlay( void );
  143.  
  144. // Get base framerate.
  145. TSXAPIFN float tsxAnimGetBaseFramerate(void);
  146.  
  147.  
  148. //------------------------------------------------------------------------------
  149. //    Animating.
  150. //------------------------------------------------------------------------------
  151.  
  152. // Create Keyframe (at curr active frame nbr) for obj, for specified attributes.
  153. TSXAPIFN tsxERR tsxSobjSetFrame( tsxSOBJ* pSobj, tsxKFRAME_TYPE keyfType );
  154. // Create Keyframe (at curr active frame nbr) for obj, for specified attributes.
  155. // Obsolete for tS3.1 and later versions, kept for compatibility with tS3.0
  156. TSXAPIFN tsxERR tsxGNodeSetFrame( tsxGNODE* pGNode, tsxKFRAME_TYPE keyfType );
  157.  
  158. // Delete Keyframe (at curr active frame nbr) for obj, for specified attributes.
  159. TSXAPIFN tsxERR tsxSobjUnsetFrame( tsxSOBJ* pSobj, tsxKFRAME_TYPE keyfType );
  160. // Delete Keyframe (at curr active frame nbr) for obj, for specified attributes.
  161. // Obsolete for tS3.1 and later versions, kept for compatibility with tS3.0
  162. TSXAPIFN tsxERR tsxGNodeUnsetFrame( tsxGNODE* pGNode, tsxKFRAME_TYPE keyfType );
  163.  
  164.  
  165. //------------------------------------------------------------------------------
  166. //    Key Frames - Time.
  167. //------------------------------------------------------------------------------
  168.  
  169. // Get time of the first frame for specified attribute if it exists (otherwise -1).
  170. TSXAPIFN float tsxSobjGetFirstTime( tsxSOBJ* pSobj, tsxKFRAME_TYPE keyfType );
  171.  
  172. // Get time of the last frame for specified attribute if it exists (otherwise -1).
  173. TSXAPIFN float tsxSobjGetLastTime( tsxSOBJ* pSobj, tsxKFRAME_TYPE keyfType );
  174.  
  175. // Get time of the next frame for specified attribute if it exists (otherwise -1).
  176. TSXAPIFN float tsxSobjGetNextTime( tsxSOBJ* pSobj, tsxKFRAME_TYPE keyfType, float time );
  177.  
  178. // Get time of the previous frame for specified attribute if it exists (otherwise -1).
  179. TSXAPIFN float tsxSobjGetPrevTime( tsxSOBJ* pSobj, tsxKFRAME_TYPE keyfType, float time );
  180.  
  181. // Get time of the closest next frame for specified attribute for whole tree if it exists (otherwise -1).
  182. TSXAPIFN float tsxSobjTreeGetNextTime( tsxSOBJ* pSobj, tsxKFRAME_TYPE keyfType, float time );
  183.  
  184. // Get time of the closest previous frame for specified attribute for whole tree if it exists (otherwise -1).
  185. TSXAPIFN float tsxSobjTreeGetPrevTime( tsxSOBJ* pSobj, tsxKFRAME_TYPE keyfType, float time );
  186.  
  187. // Get time ranges of whole animation of Sobj.
  188. TSXAPIFN tsxERR tsxSobjGetMinMaxTime( tsxSOBJ* pSobj, float* min, float* max );
  189.  
  190. // Get time ranges of whole animation of Sobj and all its children.
  191. TSXAPIFN tsxERR tsxSobjTreeGetMinMaxTime( tsxSOBJ* pSobj, float* min, float* max );
  192.  
  193. //------------------------------------------------------------------------------
  194. //    Key Frames - Managers.
  195. //------------------------------------------------------------------------------
  196.  
  197. // Create Keyframe for specified attribute.
  198. TSXAPIFN tsxERR tsxFrameCreate( tsxKEYFRAME** ppKFrame, tsxKFRAME_TYPE keyfType );
  199.  
  200. // Delete Keyframe.
  201. TSXAPIFN void tsxFrameDelete( tsxKEYFRAME* pKFrame );
  202.  
  203. // Get attribute of Keyframe.
  204. TSXAPIFN tsxKFRAME_TYPE tsxFrameGetType( tsxKEYFRAME* pKFrame );
  205.  
  206. // Get name of attribute.
  207. TSXAPIFN const char* tsxAnimGetTypeName( tsxKFRAME_TYPE keyfType );
  208.  
  209. // Copy Keyframe.
  210. TSXAPIFN tsxERR tsxFrameCopy( tsxKEYFRAME* pKFrame, tsxKEYFRAME** ppKFrameCopy );
  211.  
  212. // Add Keyframe to obj, for specified attribute (and optional segment).
  213. TSXAPIFN tsxERR tsxSobjInsertFrame( tsxSOBJ* pSobj, tsxKEYFRAME* pKFrame , long segment, float time );
  214.  
  215. // Remove Keyframe from whatever list it is in.
  216. TSXAPIFN void tsxFrameRemove( tsxKEYFRAME* pKFrame );
  217.  
  218. // Get first Keyframe of obj, for specified attribute (and optional segment).
  219. TSXAPIFN tsxKEYFRAME* tsxSobjGetFirstFrame( tsxSOBJ* pSobj, tsxKFRAME_TYPE keyfType, long segment );
  220.  
  221. // Get last Keyframe of obj, for specified attribute (and optional segment).
  222. TSXAPIFN tsxKEYFRAME* tsxSobjGetLastFrame( tsxSOBJ* pSobj, tsxKFRAME_TYPE keyfType, long segment );
  223.  
  224. // Get Keyframe at specified time for specified attribute (and optional segment) if it exists.
  225. TSXAPIFN tsxKEYFRAME* tsxSobjGetFrame( tsxSOBJ* pSobj, tsxKFRAME_TYPE keyfType, long segment, float time );
  226.  
  227. // Get closest previous (to specified time) Keyframe of obj, for specified attribute (and optional segment).
  228. TSXAPIFN tsxKEYFRAME* tsxSobjGetLeftFrame( tsxSOBJ* pSobj, tsxKFRAME_TYPE keyfType, long segment, float time );
  229.  
  230. // Get next Keyframe.
  231. TSXAPIFN tsxKEYFRAME* tsxFrameGetNextFrame( tsxKEYFRAME* pKFrame );
  232.  
  233. // Get previous Keyframe.
  234. TSXAPIFN tsxKEYFRAME* tsxFrameGetPrevFrame( tsxKEYFRAME* pKFrame );
  235.  
  236. // Get frame number of Keyframe.
  237. TSXAPIFN float tsxFrameGetTime( tsxKEYFRAME* pKFrame );
  238.  
  239. // There is no symmetrical routine: tsxFrameSetTime
  240. // To change the time (frame number) of the keyframe use tsxSobjInsertFrame with desired time.
  241. // It removes the keyframe from current place and inserts it to proper place to keep
  242. // all keyframes sorted by time.
  243.  
  244.  
  245. //------------------------------------------------------------------------------
  246. //    Key Frames - Data.
  247. //------------------------------------------------------------------------------
  248.  
  249. // Get spline parameters of Keyframe.
  250. TSXAPIFN tsxERR tsxFrameGetSplineParameters( tsxKEYFRAME* pKFrame, float* continuity, float* tension, float* bias );
  251.  
  252. // Set spline parameters of Keyframe.
  253. TSXAPIFN tsxERR tsxFrameSetSplineParameters( tsxKEYFRAME* pKFrame, float continuity, float tension, float bias );
  254.  
  255. // Get length of Keyframe data.
  256. TSXAPIFN long tsxFrameGetDataLength( tsxKEYFRAME* pKFrame );
  257.  
  258. // Get description of Keyframe data. Returns size of description.
  259. TSXAPIFN long tsxFrameGetDataDescription( tsxKEYFRAME* pKFrame, short** ppDescr );
  260.  
  261. // Get Keyframe data.
  262. TSXAPIFN long tsxFrameGetData( tsxKEYFRAME* pKFrame, void* pData, long length );
  263.  
  264. // Set Keyframe data.
  265. TSXAPIFN long tsxFrameSetData( tsxKEYFRAME* pKFrame, void* pData, long length );
  266.  
  267. // Get interpolated data for specified attribute (and optional segment) at specified time.
  268. TSXAPIFN long tsxSobjGetInterpolatedData( tsxSOBJ* pSobj, tsxKFRAME_TYPE keyfType, long segment,
  269.                                                     float time, void* pData, long length );
  270.  
  271.  
  272.  
  273. //------------------------------------------------------------------------------
  274. //    Animating Custom Attributes
  275. //------------------------------------------------------------------------------
  276.  
  277. // Function for extAnimSetOriginCB and extAnimPutOriginCB.
  278. typedef tsxERR (*tsxAnimOriginCallbackFP)( tsxSOBJ* pSobj, tsxKFRAME_TYPE keyfType);
  279.  
  280. // Function for extAnimSetFrameCB, extAnimUnSetFrameCB and extAnimPutFrameCB.
  281. typedef tsxERR (*tsxAnimFrameCallbackFP)( tsxSOBJ* pSobj, tsxKFRAME_TYPE keyfType, float time);
  282.  
  283. typedef struct {
  284.     // To store original value of Attribute of Sobj (may not be specified).
  285.     tsxAnimOriginCallbackFP        extAnimSetOriginCB;
  286.     // To restore original value of Attribute of Sobj (may not be specified).
  287.     tsxAnimOriginCallbackFP        extAnimPutOriginCB;
  288.     // To create Keyframe(s) of keyfType for Sobj at specified time.
  289.     tsxAnimFrameCallbackFP        extAnimSetFrameCB;
  290.     // To delete Keyframe(s) of keyfType for Sobj at specified time (may not be specified).
  291.     tsxAnimFrameCallbackFP        extAnimUnSetFrameCB;
  292.     // To update Attribute of Sobj according Keyframes of keyfType at specified time.
  293.     tsxAnimFrameCallbackFP        extAnimPutFrameCB;
  294. } tsxAnimCallbackFP;
  295.  
  296. // Register an attribute among attributes that may be animated.
  297. TSXAPIFN tsxKFRAME_TYPE tsxAnimCreateAttribute(
  298.     int tsxid,                            // eXtension id
  299.     char* name,                            // name of the attribute (max 16 characters)
  300.     tsxAnimCallbackFP* attrCallback,    // callback functions for the attribute
  301.     long attrDataLength,                // length of stored original data (may be 0L)
  302.     short* kfDataDescription,            // description of keyframe data (see below)
  303.     long kfDataDescriptionSize            // length of description array
  304.     );
  305.  
  306. // Allow an animation of specified attribute for Sobj.
  307. TSXAPIFN tsxERR tsxSobjAddAttribute( tsxSOBJ* pSobj, tsxKFRAME_TYPE keyfType );
  308.  
  309. // Get the first attribute of Sobj.
  310. TSXAPIFN tsxKFRAME_TYPE tsxSobjGetFirstAttribute( tsxSOBJ* pSobj );
  311.  
  312. // Get the next attribute of Sobj.
  313. TSXAPIFN tsxKFRAME_TYPE tsxSobjGetNextAttribute( tsxSOBJ* pSobj, tsxKFRAME_TYPE keyfType );
  314.  
  315. // Test for attribute of Sobj.
  316. TSXAPIFN tsxBOOL tsxSobjHasAttribute( tsxSOBJ* pSobj, tsxKFRAME_TYPE keyfType );
  317.  
  318. // Get the first segment of attribute of Sobj.
  319. TSXAPIFN long tsxSobjGetFirstSegment( tsxSOBJ* pSobj, tsxKFRAME_TYPE keyfType );
  320.  
  321. // Get the next segment of attribute of Sobj.
  322. TSXAPIFN long tsxSobjGetNextSegment( tsxSOBJ* pSobj, tsxKFRAME_TYPE keyfType, long segment );
  323.  
  324.  
  325. // Attribute data descriptor
  326.  
  327. //------------------------------------------------------------------------
  328. // Descriptor for allowing attribute to animate over time. A structure of
  329. // this type is added with each attribute that the eXtension animates to
  330. // describe the data structure of its parameters. Specify pdOpaque for any 
  331. // non-scalar data in the record, or data that you don't want trueSpace to
  332. // interpolate for you. Make the DataDescription describe all the bytes of
  333. // the parameter block.
  334. //-----------------------------------------------------------------------
  335. // Specifies the type of the data
  336.  
  337. #define    pdOpaque 0x0000
  338. // Opaque, meaning don't interpolate this. Followed by count of bytes to skip 
  339. // with pdOpaque, eg, pdOpaque, 4
  340. // If it is followed by 0, it terminates the description.
  341.  
  342. #define    pdChar 0x0001                
  343. // Interpolate as signed byte
  344.  
  345. #define    pdShort 0x0002            
  346. // Interpolate as signed short
  347.  
  348. #define    pdLong 0x0003                
  349. // Interpolate as signed long
  350.  
  351. #define    pdUnsignedChar 0x0004        
  352. // Interpolate as unsigned byte
  353.  
  354. #define    pdUnsignedShort 0x0005    
  355. // Interpolate as unsigned short
  356.  
  357. #define    pdUnsignedLong 0x0006        
  358. // Interpolate as unsigned long
  359.  
  360. #define    pdDouble 0x0008            
  361. // Interpolate as a double
  362.  
  363. #define    pdFloat 0x0009            
  364. // Interpolate as a float
  365.  
  366.  
  367. //------------------------------------------------------------------------------
  368. //    Custom Attribute Original Data
  369. //------------------------------------------------------------------------------
  370.  
  371. // Get length of Attribute data.
  372. TSXAPIFN long tsxSobjGetAttrDataLength( tsxSOBJ* pSobj, tsxKFRAME_TYPE keyfType);
  373.  
  374. // Get Attribute data.
  375. TSXAPIFN long tsxSobjGetAttrData( tsxSOBJ* pSobj, tsxKFRAME_TYPE keyfType, void* pData, long length);
  376.  
  377. // Set Attribute data.
  378. TSXAPIFN long tsxSobjSetAttrData( tsxSOBJ* pSobj, tsxKFRAME_TYPE keyfType, void* pData, long length);
  379.  
  380.  
  381. //******************************************************************************
  382. #endif // TSXANIM_H
  383.